Ubuntu 22.04 安装 nginx

Ubuntu 22.04 安装 nginx

Ubuntu 如何添加一个nginx用户用于启动nginx

Ubuntu 如何安装nginx依赖的openssl

Ubuntu 如何安装nginx依赖的zlib库

wget https://nginx.org/download/nginx-1.25.3.tar.gz
tar xvf nginx-1.25.3.tar.gz
cd nginx-1.25.3/

sudo apt install gcc libpcre3 libpcre3-dev make


./configure \
--prefix=/app/nginx \
--sbin-path=/app/nginx/nginx \
--conf-path=/app/nginx/nginx.conf \
--error-log-path=/data/log/nginx/error.log \
--http-log-path=/data/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio

make
make install

安装的时候报错 error the HTTP rewrite module requires the PCRE library 如何处理
安装时报错 error SSL modules require the OpenSSL library 如何处理